home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
wordproc
/
evp154.arj
/
PRINTDOC.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-06-25
|
708b
|
18 lines
ECHO OFF
CLS
ECHO This will print the EnVision Publisher Tutorial and the Reference Guide.
ECHO The Tutorial is 33 pages, and the Reference Guide is 116 pages.
ECHO Please make sure that your printer is turned on and it has enough paper.
ECHO -------------------------------------------------------------------------
ECHO Press any key to start printing, or CTRL-C to cancel...
ECHO -------------------------------------------------------------------------
PAUSE
CLS
ECHO Printing the EnVision Publisher Tutorial...
copy TUTORIAL.DOC PRN
ECHO Done printing the Tutorial.
ECHO Printing the EnVision Publisher Reference Guide...
copy MANUAL.DOC PRN
CLS
ECHO Printing complete.
ECHO ON